﻿body {
    background: #fff;
  }

  /* Header */
  .top-bar {
    /*display: flex;
    justify-content: space-between;
    align-items: center;
     padding: 15px 130px; 
    border-bottom: 1px solid #ddd; */   
  }

  .logo {
    font-size: 20px;
    font-weight: bold;
  }

  .logo span {
    font-weight: normal;
    letter-spacing: 2px;
  }

  .nav {
    display: flex;
justify-content: space-around;
    gap: 30px;
    padding: 10px 30px;
    border-bottom: 1px solid #ddd;
  }

  .nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
  }

  /* Hero Section */
  .hero {
    position: relative;
    overflow: hidden;
  }

  /* Wave effect */
  .hero::before {
    content: none;
  }

  .hero::after {
    content: none;
  }

  .hero-content {
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-size: 28px;
    letter-spacing: normal;
    margin-bottom: 10px;
    color: #222;
  }

  .hero p {
    font-size: 14px;
    opacity: 1;
    color: #333;
  }

  /* Cookie Banner */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #f5f5f5;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
  }

  .cookie-text {
    max-width: 75%;
    font-size: 13px;
    color: #333;
    line-height: 1.5;
  }

  .cookie-text a {
    color: blue;
    text-decoration: underline;
  }

  .cookie-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
  }
.footer-wrapper
 {
position:fixed;
bottom:0;
    padding: 10px 20px 10px 18px;
    display: inline-block;
    background: transparent;
    font-weight: 600;
    font-size: 12px;
    width: 100%;
    border-top-left-radius: 6px;
    display: flex;
    justify-content: space-between;
}
.footer-wrapper a{
	color:#000;
}
.text-white{
	color:#fff;
text-decoration:none;
}

/* Newly Added Styles */
.footer-wrapper { position: static; }

  /* Hero */
  .hero {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }

  .hero-logo {
    width: 100%;
    display: block;
  }

  .hero-text {
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    width: 40%;
    text-align: left;
    color: #222;
  }

  .hero-text h1 {
    font-size: 26px;
    font-weight: bold;
    color: #222;
    margin-bottom: 12px;
    letter-spacing: normal;
  }

  .hero-text p {
    font-size: 14px;
    color: #333;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.3;
  }

  .hero-text p strong {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-text p a {
    color: #0066cc;
    text-decoration: none;
    margin-left: 0;
    margin-right: 0;
  }

  /* Updates bar */
  .updates-bar {
    background: #53B7BC;
    color: #ffffff;
    font-size: 12px;
    padding: 5px 14px;
    flex-shrink: 0;
  }

  .updates-bar .updates-label {
    font-weight: bold;
    margin-right: 4px;
  }

  /* Content cards */
  .content-section {
    display: flex;
    padding: 30px 40px;
    gap: 40px;
    align-content: flex-start;
  }

  .content-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
  }

  .content-card img {
    width: 78px;
    height: 78px;
    border: 1px solid #ccc;
    object-fit: contain;
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .content-card-body {
    margin-left: 0;
    margin-right: 0;
  }

  .content-card-body h3 {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 8px;
    margin-left: 0;
    margin-right: 0;
  }

  .content-card-body p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-left: 0;
    margin-right: 0;
  }

  .content-card-body p a {
    color: #0066cc;
    text-decoration: none;
    margin-left: 0;
    margin-right: 0;
  }

  /* masterFooter — fixed to bottom of viewport, always visible */
  .masterFooter {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, #53B7BC 0%, #65C9D4 100%);
    clear: both;
    color: #fff;
    position: relative;
    width: 100%;
  }

  .masterFooter .bottomMenuContainer {
    position: absolute;
    padding: 7px 0 0 14px;
    top: 0;
    left: 0;
    font-size: 11px;
  }

  .masterFooter .bottomMenuContainer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .masterFooter .bottomMenuContainer ul li {
    display: inline;
    padding-left: 14px;
  }

  .masterFooter .bottomMenuContainer ul li a:link,
  .masterFooter .bottomMenuContainer ul li a:visited,
  .masterFooter .bottomMenuContainer ul li a:active {
    color: #fff;
    text-decoration: none;
  }

  .masterFooter .bottomMenuContainer ul li a:hover {
    color: #000;
    text-decoration: underline;
  }

  .masterFooter .copywrite {
    position: absolute;
    right: 15px;
    top: 7px;
    font-size: 11px;
    color: #fff;
  }